home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
win
/
pascal
/
filedll.com
/
TESTFDLL.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-04-23
|
370 b
|
21 lines
Program DLLTest;
uses WinTypes;
function DoFileDialog(Window: Word;
FilePath, DialogName, Caption: PChar): Boolean; far; external 'fdlgdll' index 1;
var
n : integer;
aName,
aPath,
aCaption: pChar;
begin
aPath := 'f:\*.*';
aName := 'FileOpen';
aCaption := 'Open Default';
DofileDialog(0, aPath, aName, aCaption);
end.